From: emellor@ewan Date: Wed, 28 Sep 2005 13:03:06 +0000 (+0100) Subject: Added logging of exceptions coming through callInfo, for better debugging. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16769^2~16^2~19 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=34a989b22110bee89b34debd6f08734d2570f79e;p=xen.git Added logging of exceptions coming through callInfo, for better debugging. Signed-off-by: Ewan Mellor --- diff --git a/tools/python/xen/xend/XendDomain.py b/tools/python/xen/xend/XendDomain.py index dd983e4984..0ec777f6ab 100644 --- a/tools/python/xen/xend/XendDomain.py +++ b/tools/python/xen/xend/XendDomain.py @@ -547,6 +547,7 @@ class XendDomain: except XendError: raise except Exception, exn: + log.exception("") raise XendError(str(exn))